home *** CD-ROM | disk | FTP | other *** search
- /**************************************************************/
- /* runtime.h - ControlZ run-time libraries include file */
- /* Copyright ⌐ 1995, C. van Zwynsvoorde. All rights reserved. */
- /**************************************************************/
-
- /*
- * This is the declaration for the Register functions. There is
- * one in each run-time library. You must call them at the
- * beginning of your program with your name and password.
- * See the COntrolZ.HLP help file for more details.
- *
- * IMPORTANT:
- * In order to be able to link those functions, you have to
- * include (some of) the following lines in your project's
- * .DEF file:
- *
- * IMPORTS
- * RegisterCZScaler=CZScaler.1
- * RegisterCZDial=CZDial.1
- * RegisterCZTuner=CZTuner.1
- * RegisterCZCombo=CZCombo.1
- * RegisterCZList=CZList.1
- * RegisterCZText=CZText.1
- * RegisterCZLink=CZLink.1
- *
- * You will also have to make a CASE INSENSITIVE LINK AND IMPORT
- */
-
- BOOL FAR PASCAL RegisterCZScaler(LPSTR szName, LPSTR szCode);
- BOOL FAR PASCAL RegisterCZDial(LPSTR szName, LPSTR szCode);
- BOOL FAR PASCAL RegisterCZTuner(LPSTR szName, LPSTR szCode);
- BOOL FAR PASCAL RegisterCZCombo(LPSTR szName, LPSTR szCode);
- BOOL FAR PASCAL RegisterCZList(LPSTR szName, LPSTR szCode);
- BOOL FAR PASCAL RegisterCZText(LPSTR szName, LPSTR szCode);
- BOOL FAR PASCAL RegisterCZLink(LPSTR szName, LPSTR szCode);
-
-